.hero .container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {

    max-width: 900px;
    width: 100%;

    margin: 0 auto 60px;

    text-align: center;

}

.hero h1 {

    max-width: 900px;

    margin: 30px auto;

    text-align: center;

}

.hero .lead {

    max-width: 850px;

    margin: 0 auto 40px;

    text-align: center;

}

.hero-checks {

    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;

    margin: 35px 0;

}

.hero-buttons {

    display: flex;
    justify-content: center;
    gap: 20px;

    margin-bottom: 50px;

}

.hero-image {

    width: 200%;

    display: flex;
    justify-content: center;

}

.hero-image img {

    display: block;

    width: 100%;
    max-width: 900px;

    height: auto;

    margin: 0 auto;

}